home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / BORL_TIP / TI1000 / TI1256.ASC < prev    next >
Text File  |  1993-02-10  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  Borland/Turbo Pascal                  NUMBER  :  1256
  9.   VERSION  :  7.0
  10.        OS  :  DOS
  11.      DATE  :  February 10, 1993                        PAGE  :  1/1
  12.  
  13.     TITLE  :  Keyboard Problems Using Borland Pascal and TPX
  14.  
  15.  
  16.  
  17.  
  18.   At times, users of Borland Pascal or Turbo Pascal's TPX compilers
  19.   find difficulty using their keyboards.  Usual symptoms include
  20.   the following.
  21.  
  22.   1.   The cursor keys persistently highlighting text.
  23.   2.   The cursor keys randomly producing numeric characters
  24.          instead of moving the cursor.
  25.   3.   Keypresses behaving as if the shift key were stuck.
  26.   4.   Keystrokes producing apparently random and unrelated
  27.          characters.
  28.  
  29.   The problem is usually related to timing issues.  In 16-bit
  30.   protected mode, the addressing mode used forces all memory
  31.   accesses to be directed through a table of selectors rather than
  32.   to physical memory directly.  Thereby, making each memory access
  33.   slightly slower than seen using real mode. On most systems, the
  34.   difference in timing is insignificant and no ill effects are
  35.   seen.  However, some systems in certain configurations may
  36.   experience the problems noted above.
  37.  
  38.   To address this problem, most users are able to use the KEYB.COM
  39.   program that accompanies MS-DOS.  Place the following statement
  40.   into your AUTOEXEC.BAT file.
  41.  
  42.                             C:\DOS\KEYB US
  43.  
  44.   Then restart your computer system.  It is important to run
  45.   KEYB.COM before entering the IDE.  It is not appropriate to run
  46.   this program from the Dos Shell selection of the IDE's file menu.
  47.  
  48.  
  49.   DISCLAIMER: You have the right to use this technical information
  50.   subject to the terms of the No-Nonsense License Statement that
  51.   you received with the Borland product to which this information
  52.   pertains.
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.